โ– humdrum codex / glint v1.0.2
license AGPL-3.0
1.1 KB raw
id
TASK-033
title
Remap Home/End to doc start/end, Ctrl+Up/Down to line start/end
status
๐Ÿ Done
assignee
created_date
2026-07-01 00:32
updated_date
2026-07-01 00:32
labels
bug
dependencies
modified_files
internal/editor/editor.go, internal/help/help.go, internal/editor/editor_test.go
priority
medium
ordinal
32000

Description

Home/End were overloaded with line-start/end (smart toggle) while doc-start/end lived on Ctrl+Home/Ctrl+End, leaving no clean way to reach the top/bottom of the doc without a modifier. Swapped: Home/End -> MoveDocStart/MoveDocEnd; Ctrl+Up/Ctrl+Down -> MoveHome/MoveEnd (line-level); Shift+Home/End and Ctrl+Shift+Up/Down updated to match for selection. Removed the now-redundant Ctrl+Home/Ctrl+End cases.

Acceptance Criteria